home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib43
/
mntlib
/
gmakefil.16
< prev
next >
Wrap
Text File
|
1990-04-08
|
655b
|
34 lines
# Makefile for the GCC TOS library (16 bit int default with debugging)
CC= d:\gnu\bin\gcc.ttp
CPP=d:\gnu\bin\gcc-cpp.ttp
AR= d:\gnu\bin\gcc-ar.ttp
AS= $(CC)
LIB = d:\gnu\lib
COPTS= -O -gg -D__NO_INLINE__ $(XFLAGS)
# normal CFLAGS
CFLAGS= -mshort $(COPTS)
# CFLAGS sans -fomit-frame-pointer
CFFLAGS = $(CFLAGS)
# cflags for stuff that needs to be compiled with 32 bit ints
CLFLAGS= $(COPTS) -DSHORTLIB
# flags to $(CC) when it runs the assembler only
ASFLAGS= -c
# pre-processor flags
PPFLAGS= -P -D__MSHORT__ -D__NO_INLINE__
# library targets
CLIB= gnugdb16.olb
IIOLIB= iiogdb16.olb
# the stuff to make
ALL= $(CLIB) crt0.o gcrt0.o
include mincl